public enum AppstoreSDKModes extends java.lang.Enum<AppstoreSDKModes>
| Enum Constant and Description |
|---|
PRODUCTION
Application will communicate with Amazon Appstore for
all the API calls.
|
SANDBOX
This mode represents that the Application is currently
being tested and it will interact only with Amazon
AppTester.
|
UNKNOWN
SDK has still not been initialized by calling
verifyLicense API.
|
| Modifier and Type | Method and Description |
|---|---|
static
AppstoreSDKModes
|
valueOf(java.lang.String name)
Returns the enum constant of this type with the
specified name.
|
static
AppstoreSDKModes[]
|
values()
Returns an array containing the constants of this enum
type, in the order they are declared.
|
public static final AppstoreSDKModes SANDBOX
public static final AppstoreSDKModes PRODUCTION
public static final AppstoreSDKModes UNKNOWN
public static AppstoreSDKModes[] values()
for (AppstoreSDKModes c : AppstoreSDKModes.values()) System.out.println(c);
public static AppstoreSDKModes valueOf(java.lang.String name)
name - the name of the enum constant to be
returned.
java.lang.IllegalArgumentException - if
this enum type has no constant with the specified name
java.lang.NullPointerException - if the
argument is null